home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 3
/
Gold Medal Software - Volume 3 (Gold Medal) (1994).iso
/
prog
/
dflt18.arj
/
HELPBOX.H
< prev
next >
Wrap
C/C++ Source or Header
|
1994-03-24
|
409b
|
26 lines
/* --------- helpbox.h ----------- */
#ifndef HELPBOX_H
#define HELPBOX_H
/* --------- linked list of help text collections -------- */
struct helps {
char *hname;
char *comment;
long hptr;
int bit;
int hheight;
int hwidth;
int nexthlp;
int prevhlp;
void *hwnd;
char *PrevName;
char *NextName;
#ifdef FIXHELP
struct helps *NextHelp;
#endif
};
#endif